home *** CD-ROM | disk | FTP | other *** search
/ Atari Forever 3 / Atari Forever 3 / Atari Forever 3.iso / TOOLS / MGIF / EXAMPLES / LOGO / LOGO.TXT < prev    next >
Encoding:
Text File  |  1996-01-23  |  1.5 KB  |  44 lines

  1. This file describes how the MGIF logo was created.
  2.  
  3. When you're required to save an image below, you can use any format that
  4. will keep all information. The easiest way is probably to use the 'Copy'
  5. for saving and then loading with 'Paste', but you can just as well use
  6. the normal load/save facilities with for example GIF format.
  7.  
  8.  
  9. 1) Set up convolution matrix:
  10.  
  11.    Direction: NW
  12.    Matrix: Sobel + 1
  13.  
  14.      2  1  0
  15.      1  1 -1
  16.      0 -1 -2
  17.  
  18.    Divisor: 2
  19.    Bias: 64
  20.  
  21. 2) Load mgif.img, perform convolution and save destination buffer.
  22.  
  23. 3) Halve the size of mgif.img (still in source buffer),
  24.    change source buffer to be the same as the destination,
  25.    perform convolution, double size back to normal, blur and finally
  26.    save (source and destination are the same).
  27.    Now you got wider Sobel effect on the image.
  28.  
  29. 4) Load and combine the two images saved in step 2 and 3, 1/2 + 1/2
  30.    and save the result.
  31.    You got sharpness from step 2 and wider effect from step 3.
  32.  
  33. 5) Load mgif.img again and invert it. Load lines.img and combine (1 + 1).
  34.    Widen the holes in the combined image using Lmax 3.
  35.    Apply the convolution to the result and save.
  36.  
  37. 7) Combine the images from step 4 (2/3) and step 5 (1/3) and you've got a
  38.    rather good looking logo.
  39.  
  40. 8) The image from step 7 looks rather good in greyscales, but for monochrome
  41.    it can get still better.
  42.    Apply histogram equalization and save as IMG with F-S dithering.
  43.    Some Laplace filtering during save won't hurt.
  44.